home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wdj0797.zip / TUFFS.ZIP / WARNING.CPP < prev    next >
C/C++ Source or Header  |  1997-04-22  |  653b  |  19 lines

  1. // File:        warning.cpp
  2. // Description: Issue a warning about impending unsafe operations and ask
  3. //              for permission to proceed.
  4. #include <stdlib.h>
  5. #include <iostream.h>
  6. #include "warning.h"
  7.  
  8. char IssueWarning()
  9. {
  10.   cout << "WARNING: This program is about to generate an unhandled system exception" << endl;
  11.   cout << "WARNING: This may result in your operating system becoming unstable" << endl;
  12.   cout << "WARNING: You should save any work in progress in case you need to reboot" << endl;
  13.   cout << "Press 'y' to continue, 'n' to abort: ";
  14.   char answer;
  15.   cin >> answer;
  16.   if (answer != 'y') exit(0);
  17.   return 0;
  18. }
  19.